HomeSort by relevance Sort by last modified time
    Searched refs:SOURCE (Results 26 - 50 of 74) sorted by null

12 3

  /external/chromium_org/tools/gn/
file_template.h 2 // Use of this source code is governed by a BSD-style license that can be
21 // A FileTemplate object implements source expansion for a given "template"
25 // apply a source to it to get a list of outputs manually. Or you can do the
35 // {{source}} -> expands to be the source file name relative to the build
37 SOURCE,
104 // required parts of the given source file string. The results will be
112 const std::string& source,
119 // Extracts the given type of substitution from the given source. The source
    [all...]
file_template.cc 2 // Use of this source code is governed by a BSD-style license that can be
15 const char FileTemplate::kSource[] = "{{source}}";
20 "How Source Expansion Works\n"
22 " Source expansion is used for the custom script and copy target types\n"
23 " to map source file names to output file names or arguments.\n"
25 " To perform source expansion in the outputs, GN maps every entry in the\n"
29 " Source expansion in the args works similarly, but performing the\n"
42 " {{source}}\n"
43 " The name of the source file relative to the root build output\n"
49 " The file part of the source including the extension. For the\n
    [all...]
  /frameworks/ex/common/java/com/android/common/
Search.java 2 * Copyright (C) 2010 The Android Open Source Project
34 * Key for the source identifier set by the application that launched a search intent.
35 * The identifier is search-source specific string. It can be used
38 * The source identifier is stored in the {@link android.app.SearchManager#APP_DATA}
42 public final static String SOURCE = "source";
  /external/chromium_org/third_party/mesa/src/scons/
crossmingw.py 78 def shlib_generator(target, source, env, for_signature):
94 def shlib_emitter(target, source, env):
110 # or a def file source. There is no option to disable def file
113 def_source = env.FindIxes(source, 'WIN32DEFPREFIX', 'WIN32DEFSUFFIX')
120 return (target, source)
134 '''This is a hack used to compile some source files without the
207 env['RCCOM'] = '$RC $_CPPDEFFLAGS $_CPPINCFLAGS ${INCPREFIX}${SOURCE.dir} $RCFLAGS -i $SOURCE -o $TARGET'
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
CompilingClassLoader.java 40 * This is a Java ClassLoader that will attempt to load a class from a string of source code.
54 * // Load class from source.
64 * Only one chunk of source can be compiled per instance of CompilingClassLoader. If you need to
106 * @param sourceCode Java source for class. e.g. "package com.foo; class MyClass { ... }".
196 super(makeUri(className), Kind.SOURCE);
202 return new URI(className.replaceAll("\\.", "/") + Kind.SOURCE.extension);
  /external/mesa3d/scons/
crossmingw.py 78 def shlib_generator(target, source, env, for_signature):
94 def shlib_emitter(target, source, env):
110 # or a def file source. There is no option to disable def file
113 def_source = env.FindIxes(source, 'WIN32DEFPREFIX', 'WIN32DEFSUFFIX')
120 return (target, source)
134 '''This is a hack used to compile some source files without the
207 env['RCCOM'] = '$RC $_CPPDEFFLAGS $_CPPINCFLAGS ${INCPREFIX}${SOURCE.dir} $RCFLAGS -i $SOURCE -o $TARGET'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pipes.py 113 # a source raises ValueError
115 t.prepend('boguscmd', pipes.SOURCE)
127 # shouldn't be able to append a source
128 self.assertRaises(ValueError, t.append, 'boguscmd', pipes.SOURCE)
166 t.prepend('boguscmd', pipes.SOURCE)
167 self.assertRaises(ValueError, t.prepend, 'boguscmd', pipes.SOURCE)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pipes.py 113 # a source raises ValueError
115 t.prepend('boguscmd', pipes.SOURCE)
127 # shouldn't be able to append a source
128 self.assertRaises(ValueError, t.append, 'boguscmd', pipes.SOURCE)
166 t.prepend('boguscmd', pipes.SOURCE)
167 self.assertRaises(ValueError, t.prepend, 'boguscmd', pipes.SOURCE)
  /external/valgrind/main/cachegrind/
cg_merge.c 116 /* Keep track of source filename/line no so as to be able to
124 SOURCE;
126 static void printSrcLoc ( SOURCE* s )
132 static void mallocFail ( SOURCE* s, char* who )
140 static void parseError ( SOURCE* s, char* msg )
148 static void barf ( SOURCE* s, char* msg )
160 static Bool readline ( SOURCE* s )
476 Counts* splitUpCountsLine ( SOURCE* s, /*OUT*/UWord* lnno, char* str )
507 static void addCounts ( SOURCE* s, /*OUT*/Counts* counts1, Counts* counts2 )
516 static Bool addCountsToMap ( SOURCE* s
    [all...]
  /external/checkpolicy/
policy_scan.l 145 SOURCE |
146 source { return(SOURCE); }
279 fprintf(stderr, "(unknown source)::");
295 fprintf(stderr, "(unknown source)::");
policy_parse.y 126 %token SOURCE
210 default_user_def : DEFAULT_USER names SOURCE ';'
215 default_role_def : DEFAULT_ROLE names SOURCE ';'
220 default_range_def : DEFAULT_RANGE names SOURCE LOW ';'
222 | DEFAULT_RANGE names SOURCE HIGH ';'
224 | DEFAULT_RANGE names SOURCE LOW_HIGH ';'
565 | SOURCE ROLE { if (insert_separator(1)) return -1; } names_push
574 | SOURCE TYPE { if (insert_separator(1)) return -1; } names_push
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
Win32PipeStream.cpp 2 * Copyright (C) 2011 The Android Open Source Project
26 #error ONLY BUILD THIS SOURCE FILE FOR WINDOWS!
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
ASCIIFastPath.h 105 inline void copyLCharsFromUCharSource(LChar* destination, const UChar* source, size_t length)
112 for (;i < length && !isAlignedTo<memoryAccessMask>(&source[i]); ++i) {
113 ASSERT(!(source[i] & 0xff00));
114 destination[i] = static_cast<LChar>(source[i]);
124 ASSERT(!(source[i+checkIndex] & 0xff00));
126 __m128i first8UChars = _mm_load_si128(reinterpret_cast<const __m128i*>(&source[i]));
127 __m128i second8UChars = _mm_load_si128(reinterpret_cast<const __m128i*>(&source[i+8]));
134 ASSERT(!(source[i] & 0xff00));
135 destination[i] = static_cast<LChar>(source[i]);
145 *destination++ = static_cast<LChar>(*source++)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
AccessibleObjectTest.java 64 @Retention(RetentionPolicy.SOURCE)
ConstructorTest.java 51 @Retention(RetentionPolicy.SOURCE)
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSearch.java 2 * Copyright (C) 2008 The Android Open Source Project
51 // "source" parameter for Google search requests from unknown sources (e.g. apps). This will get
119 // If the caller specified a 'source' url parameter, use that and if not use default.
121 String source = GOOGLE_SEARCH_SOURCE_UNKNOWN; local
123 source = appSearchData.getString(Search.SOURCE);
137 + "&source=android-" + source
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
Win32PipeStream.cpp 2 * Copyright (C) 2011 The Android Open Source Project
26 #error ONLY BUILD THIS SOURCE FILE FOR WINDOWS!
  /packages/apps/Browser/src/com/android/browser/
NavigationBarBase.java 2 * Copyright (C) 2011 The Android Open Source Project
158 public void onAction(String text, String extra, String source) {
160 if (UrlInputView.TYPED.equals(source)) {
178 if (source != null) {
180 appData.putString(com.android.common.Search.SOURCE, source);
IntentHandler.java 2 * Copyright (C) 2010 The Android Open Source Project
47 // "source" parameter for Google search suggested by the browser
49 // "source" parameter for Google search from unknown source
231 String searchSource = "&source=android-" + GOOGLE_SEARCH_SOURCE_SUGGEST + "&";
233 String source = null; local
236 source = appData.getString(Search.SOURCE);
238 if (TextUtils.isEmpty(source)) {
239 source = GOOGLE_SEARCH_SOURCE_UNKNOWN
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchWidgetProvider.java 2 * Copyright (C) 2009 The Android Open Source Project
58 * The {@link Search#SOURCE} value used when starting searches from the search widget.
123 widgetAppData.putString(Search.SOURCE, WIDGET_SEARCH_SOURCE);
SearchActivity.java 2 * Copyright (C) 2009 The Android Open Source Project
72 private Source mSource;
347 protected void startSearch(Source searchSource, String query) {
365 protected Source getSearchSource() {
461 String source = getIntent().getStringExtra(Search.SOURCE); local
463 getLogger().logStart(mOnCreateLatency, latency, source);
474 protected void updateSuggestions(String query, Source source) {
475 if (DBG) Log.d(TAG, "updateSuggestions(\"" + query+"\"," + source + ")")
    [all...]
  /prebuilts/tools/common/cglib/
cglib-2.2.3.jar 
cglib-nodep-2.2.3.jar 
  /prebuilts/tools/common/m2/internal/cglib/cglib-nodep/2.2.2/
cglib-nodep-2.2.2.jar 
  /external/chromium_org/third_party/lcov/bin/
geninfo 83 "source" => $ERROR_SOURCE,
225 our $rc_adjust_src_path;# Regexp specifying parts to remove from source path
582 --ignore-errors ERROR Continue after ERROR (gcov, source, graph)
584 --no-markers Ignore exclusion markers in source code
639 # For each source file name referenced in the data file, there is a section
640 # containing source code and coverage data:
642 # SF:<absolute path to the source file>
652 # In addition to the main source code file there are sections for each
654 # of a source file is generated by interpreting the contents of the respective
720 # source<n>: Source code for line
    [all...]

Completed in 879 milliseconds

12 3