/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
test-webkitperl | 36 use File::Spec; 51 my $sourceRootDir = File::Spec->catfile($FindBin::Bin, "../..");
|
show-pretty-diff | 42 DIR => File::Spec->tmpdir(), 57 DIR => File::Spec->tmpdir(),
|
webkitdirs.pm | 39 use File::Spec; 166 my $devnull = File::Spec->devnull(); 446 $configurationProductDir = File::Spec->catdir($baseProductDir, configurationForVisualStudio(), "bin"); 877 my $qmakepath = File::Spec->catfile(sourceDir(), "Tools", "qmake"); 880 my $file = File::Spec->catfile(sourceDir(), "WebKit.pro"); 909 my $devnull = File::Spec->devnull(); 1014 my $stageLib = File::Spec->catdir($stageDir, $cpuDir, "lib"); 1015 my $stageUsrLib = File::Spec->catdir($stageDir, $cpuDir, "usr", "lib"); 1016 my $stageInc = File::Spec->catdir($stageDir, "usr", "include"); 1025 $ccCommand = File::Spec->catfile($qnxHost, "usr", "bin", "qcc") [all...] |
svn-unapply | 66 use File::Spec; 223 my @dirs = File::Spec->splitdir($path); 225 my $dir = File::Spec->catdir(@dirs);
|
svn-create-patch | 48 use File::Spec; 81 my $devNull = File::Spec->devnull(); 209 $sourceFile = File::Spec->abs2rel($1, $baseUrl); 221 my $file = File::Spec->catdir($prefix, $fileData->{path}); 275 $diffFiles->{$path}->{isTestFile} = exists $testDirectories{(File::Spec->splitdir($path))[0]} ? 1 : 0; 391 die "can't handle absolute paths like \"$file\"\n" if File::Spec->file_name_is_absolute($file);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
GridLayout3.java | 50 Spec titleRow = spec(0); 51 Spec introRow = spec(1); 52 Spec emailRow = spec(2, BASELINE); 53 Spec passwordRow = spec(3, BASELINE); 54 Spec button1Row = spec(5) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/ |
LoadAsModule.pm | 33 use File::Spec; 35 use lib File::Spec->catdir($FindBin::Bin, "..", ".."); 51 my $scriptPath = File::Spec->catfile(sourceDir(), "Tools", "Scripts", $script);
|
httpd.pm | 37 use File::Spec; 38 use File::Spec::Functions; 65 my $exclusiveLockFile = File::Spec->catfile($tmpDir, "WebKit.lock"); 66 my $httpdPidDir = File::Spec->catfile($tmpDir, "WebKit"); 67 my $httpdPidFile = File::Spec->catfile($httpdPidDir, "httpd.pid"); 111 my $httpdLockFile = File::Spec->catfile($httpdPidDir, "httpd.lock"); 112 my $httpdScoreBoardFile = File::Spec->catfile($httpdPidDir, "httpd.scoreboard"); 307 my $currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRunning()); 311 $currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRunning()); 331 $myLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getNextAvailableLockNumber()) [all...] |
/frameworks/base/tests/BiDiTests/src/com/android/bidi/ |
BiDiTestGridLayoutCodeLtr.java | 55 Spec row1 = spec(0); 56 Spec row2 = spec(1); 57 Spec row3 = spec(2, BASELINE); 58 Spec row4 = spec(3, BASELINE); 59 Spec row5 = spec(2, 3, FILL); // allow the last two rows to overlap the middle tw [all...] |
BiDiTestGridLayoutCodeRtl.java | 55 Spec row1 = spec(0); 56 Spec row2 = spec(1); 57 Spec row3 = spec(2, BASELINE); 58 Spec row4 = spec(3, BASELINE); 59 Spec row5 = spec(2, 3, FILL); // allow the last two rows to overlap the middle tw [all...] |
/development/samples/Support7Demos/src/com/example/android/supportv7/view/ |
GridLayout3.java | 25 import static android.support.v7.widget.GridLayout.spec; 36 import android.support.v7.widget.GridLayout.Spec; 61 Spec titleRow = spec(0); 62 Spec introRow = spec(1); 63 Spec emailRow = spec(2, BASELINE); 64 Spec passwordRow = spec(3, BASELINE) [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/ |
build_vc.pl | 16 use File::Spec; 47 $h = File::Spec->canonpath($h); 68 $file = File::Spec->canonpath($file); 70 (undef, undef, $f) = File::Spec->splitpath($file); 73 $objfile = File::Spec->catfile('obj', $base.'.o'); 101 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/ |
build_vc.pl | 16 use File::Spec; 47 $h = File::Spec->canonpath($h); 68 $file = File::Spec->canonpath($file); 70 (undef, undef, $f) = File::Spec->splitpath($file); 75 $objfile = File::Spec->catfile('obj', $base.'.o'); 103 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/ |
build_vc.pl | 16 use File::Spec; 47 $h = File::Spec->canonpath($h); 68 $file = File::Spec->canonpath($file); 70 (undef, undef, $f) = File::Spec->splitpath($file); 73 $objfile = File::Spec->catfile('obj', $base.'.o'); 101 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE);
|
/packages/apps/Gallery2/src/com/android/gallery3d/anim/ |
StateTransitionAnimation.java | 30 public static class Spec { 31 public static final Spec OUTGOING; 32 public static final Spec INCOMING; 33 public static final Spec PHOTO_INCOMING; 54 OUTGOING = new Spec(); 64 INCOMING = new Spec(); 77 private static Spec specForTransition(Transition t) { 80 return Spec.OUTGOING; 82 return Spec.INCOMING; 84 return Spec.PHOTO_INCOMING [all...] |
/external/e2fsprogs/intl/ |
vasnprintf.h | 31 # define __attribute__(Spec) /* empty */
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
error.h | 24 # define __attribute__(Spec) /* empty */
|
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/ |
GridLayoutTest.java | 36 Spec rowSpec = spec(UNDEFINED, null); 37 Spec colSpec = spec(UNDEFINED, null);
|
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/ |
Test.pm | 14 use File::Spec; 68 my $grammar_file = File::Spec->catfile($tmpdir, "$grammar_name.g"); 72 my $test_program_file = File::Spec->catfile($tmpdir, 'test.pl'); 89 my $g_result = run_program([ File::Spec->catfile($cwd, 'tools', $antlr), '-o', $tmpdir, $grammar_file ]); 96 #local $ENV{PERLCOV_DB} = File::Spec->catfile($tmpdir, 'perlcov.db'); 97 #local $ENV{NYTPROF} = 'file=' . File::Spec->catfile($tmpdir, 'nytprof.out');
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
Config.java | 30 public SlotView.Spec slotViewSpec; 48 slotViewSpec = new SlotView.Spec(); 84 public SlotView.Spec slotViewSpec; 99 slotViewSpec = new SlotView.Spec();
|
/frameworks/base/core/java/android/widget/ |
GridLayout.java | 68 * Each spec defines the set of rows or columns that are to be 661 Spec spec = horizontal ? p.columnSpec : p.rowSpec; local 663 Interval span = spec.span; 685 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 686 int index = leading ? spec.span.min : spec.span.max; 740 final Spec majorSpec = horizontal ? lp.rowSpec : lp.columnSpec; 748 final Spec minorSpec = horizontal ? lp.columnSpec : lp.rowSpec 824 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1013 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1253 Spec spec = horizontal ? params.columnSpec : params.rowSpec; local 1297 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1313 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1655 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 2445 Spec spec = (Spec) that; local 2479 public static Spec spec(int start, int size, Alignment alignment) { method 2497 public static Spec spec(int start, Alignment alignment) { method 2514 public static Spec spec(int start, int size) { method 2530 public static Spec spec(int start) { method [all...] |
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/ |
GridLayout.java | 69 * Each spec defines the set of rows or columns that are to be 657 Spec spec = horizontal ? p.columnSpec : p.rowSpec; local 659 Interval span = spec.span; 685 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 686 int index = leading ? spec.span.min : spec.span.max; 740 final Spec majorSpec = horizontal ? lp.rowSpec : lp.columnSpec; 748 final Spec minorSpec = horizontal ? lp.columnSpec : lp.rowSpec 812 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 914 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1142 Spec spec = horizontal ? params.columnSpec : params.rowSpec; local 1186 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1202 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 1544 Spec spec = horizontal ? lp.columnSpec : lp.rowSpec; local 2328 Spec spec = (Spec) that; local 2362 public static Spec spec(int start, int size, Alignment alignment) { method 2380 public static Spec spec(int start, Alignment alignment) { method 2397 public static Spec spec(int start, int size) { method 2413 public static Spec spec(int start) { method [all...] |
/external/chromium_org/third_party/lcov/bin/ |
mcov | 17 use File::Spec::Functions; 125 $da_filename = File::Spec::Functions::catfile($base_dir, 212 return (File::Spec::Functions::canonpath($filename));
|
/external/clang/include/clang/Sema/ |
TemplateDeduction.h | 230 void set(Decl *Spec, DeductionFailureInfo Info) { 231 Specialization = Spec;
|
/external/antlr/antlr-3.4/runtime/Perl5/tools/ |
port.pl | 9 use File::Spec; 10 use File::Spec::Unix; 73 map { File::Spec->catfile($_, $filename) } 79 $resolved_file = File::Spec::Unix->canonpath($resolved_file);
|