/ndk/tests/device/test-gnustl-full/jni/ |
Android.mk | 8 sources := $(wildcard $(unit_path)/*.cpp $(unit_path)/*.c) macro 9 sources := $(sources:$(unit_path)/%=%) macro 12 sources := $(filter-out string_header_test.c,$(sources)) macro 15 sources := $(filter-out exception_test.cpp,$(sources)) macro 18 sources := $(filter-out codecvt_test.cpp,$(sources)) macro 20 LOCAL_SRC_FILES := $(sources:%=unit/% [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
RegisterMapper.java | 45 * @param sources old register list 48 public final RegisterSpecList map(RegisterSpecList sources) { 49 int sz = sources.size(); 53 newSources.set(i, map(sources.get(i))); 58 // Return the old sources if nothing has changed. 59 return newSources.equals(sources) ? sources : newSources;
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
RegisterMapper.java | 45 * @param sources old register list 48 public final RegisterSpecList map(RegisterSpecList sources) { 49 int sz = sources.size(); 53 newSources.set(i, map(sources.get(i))); 58 // Return the old sources if nothing has changed. 59 return newSources.equals(sources) ? sources : newSources;
|
/ndk/tests/device/test-stlport/jni/ |
Android.mk | 8 sources := $(wildcard $(unit_path)/*.cpp $(unit_path)/*.c) macro 9 sources := $(sources:$(LOCAL_PATH)/%=%) macro 12 sources := $(filter-out unit/string_header_test.c,$(sources)) macro 15 sources := $(filter-out unit/exception_test.cpp,$(sources)) macro 18 sources := $(filter-out unit/codecvt_test.cpp,$(sources)) macro 20 LOCAL_SRC_FILES := $(sources) [all...] |
/external/webkit/Tools/Scripts/ |
update-sources-list.py | 37 This method parses the WebCoreSources.bkl file, which has a list of all sources not specific 41 sources = {} 62 sources[groupName] = sourcesList 64 return sources 66 def generateWebCoreSourcesGTKAndQT(sources): 70 QT and GTK would have to include the file "WebCore/sources.inc" into their makefiles. 74 for key in sources.keys(): 76 for source in sources[key]: 82 for key in sources.keys(): 85 outfile = os.path.join(wkroot, "Source", "WebCore", "sources.inc" 90 sources = getWebCoreFilesDict() variable [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
CorpusFactory.java | 26 Collection<Corpus> createCorpora(Sources sources);
|
SearchableCorpusFactory.java | 52 public Collection<Corpus> createCorpora(Sources sources) { 54 addSpecialCorpora(corpora, sources); 55 addSingleSourceCorpora(corpora, sources); 75 * @param sources All available sources. 77 protected void addSpecialCorpora(ArrayList<Corpus> corpora, Sources sources) { 78 addCorpus(corpora, createWebCorpus(sources)); 79 addCorpus(corpora, createAppsCorpus(sources)); [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
TranslationAdvice.java | 31 * The instruction associated must have exactly two sources. 43 * Returns true if the translation target requires the sources of the 47 * @param sources {@code non-null;} source list 48 * @return {@code true} iff the target requires the sources to be 51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources);
|
PlainInsn.java | 37 * @param sources {@code non-null;} specs for all the sources 40 RegisterSpec result, RegisterSpecList sources) { 41 super(opcode, position, result, sources); 99 RegisterSpecList sources = getSources(); local 100 int szSources = sources.size(); 106 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer(); 114 RegisterSpecList newSources = sources.withoutLast(); 133 RegisterSpecList sources) { 137 sources); [all...] |
Rop.java | 61 /** {@code non-null;} types of all the sources of this operation */ 62 private final TypeList sources; field in class:Rop 86 * @param sources {@code non-null;} types of all the sources of this operation 94 public Rop(int opcode, Type result, TypeList sources, 101 if (sources == null) { 102 throw new NullPointerException("sources == null"); 120 this.sources = sources; 134 * @param sources {@code non-null;} types of all the sources of this operatio [all...] |
DexTranslationAdvice.java | 38 * instruction that requires its sources to be in order and contiguous. 92 RegisterSpecList sources) { 95 && totalRopWidth(sources) >= MIN_INVOKE_IN_ORDER; 101 * @param sources {@code non-null;} list of SSA registers 104 private int totalRopWidth(RegisterSpecList sources) { 105 int sz = sources.size(); 109 total += sources.get(i).getCategory();
|
CstInsn.java | 35 * @param sources {@code non-null;} specs for all the sources 39 RegisterSpecList sources, Constant cst) { 40 super(opcode, position, result, sources);
|
ConservativeTranslationAdvice.java | 44 RegisterSpecList sources) {
|
/dalvik/dx/src/com/android/dx/rop/code/ |
TranslationAdvice.java | 31 * The instruction associated must have exactly two sources. 43 * Returns true if the translation target requires the sources of the 47 * @param sources {@code non-null;} source list 48 * @return {@code true} iff the target requires the sources to be 51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources);
|
PlainInsn.java | 38 * @param sources {@code non-null;} specs for all the sources 41 RegisterSpec result, RegisterSpecList sources) { 42 super(opcode, position, result, sources); 100 RegisterSpecList sources = getSources(); local 101 int szSources = sources.size(); 107 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer(); 111 TypeBearer firstType = sources.get(0).getTypeBearer(); 114 RegisterSpecList newSources = sources.withoutFirst(); 125 RegisterSpecList newSources = sources.withoutLast() [all...] |
Rop.java | 61 /** {@code non-null;} types of all the sources of this operation */ 62 private final TypeList sources; field in class:Rop 86 * @param sources {@code non-null;} types of all the sources of this operation 94 public Rop(int opcode, Type result, TypeList sources, 101 if (sources == null) { 102 throw new NullPointerException("sources == null"); 120 this.sources = sources; 134 * @param sources {@code non-null;} types of all the sources of this operatio [all...] |
Insn.java | 27 * list of actual sources and result registers/values, and additional 40 /** {@code non-null;} specs for all the sources of this instruction */ 41 private final RegisterSpecList sources; field in class:Insn 49 * @param sources {@code non-null;} specs for all the sources 52 RegisterSpecList sources) { 61 if (sources == null) { 62 throw new NullPointerException("sources == null"); 68 this.sources = sources; [all...] |
CstInsn.java | 35 * @param sources {@code non-null;} specs for all the sources 39 RegisterSpecList sources, Constant cst) { 40 super(opcode, position, result, sources);
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
TranslationAdvice.java | 31 * The instruction associated must have exactly two sources. 43 * Returns true if the translation target requires the sources of the 47 * @param sources {@code non-null;} source list 48 * @return {@code true} iff the target requires the sources to be 51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources);
|
PlainInsn.java | 38 * @param sources {@code non-null;} specs for all the sources 41 RegisterSpec result, RegisterSpecList sources) { 42 super(opcode, position, result, sources); 100 RegisterSpecList sources = getSources(); local 101 int szSources = sources.size(); 107 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer(); 111 TypeBearer firstType = sources.get(0).getTypeBearer(); 114 RegisterSpecList newSources = sources.withoutFirst(); 125 RegisterSpecList newSources = sources.withoutLast() [all...] |
Rop.java | 61 /** {@code non-null;} types of all the sources of this operation */ 62 private final TypeList sources; field in class:Rop 86 * @param sources {@code non-null;} types of all the sources of this operation 94 public Rop(int opcode, Type result, TypeList sources, 101 if (sources == null) { 102 throw new NullPointerException("sources == null"); 120 this.sources = sources; 134 * @param sources {@code non-null;} types of all the sources of this operatio [all...] |
Insn.java | 27 * list of actual sources and result registers/values, and additional 40 /** {@code non-null;} specs for all the sources of this instruction */ 41 private final RegisterSpecList sources; field in class:Insn 49 * @param sources {@code non-null;} specs for all the sources 52 RegisterSpecList sources) { 61 if (sources == null) { 62 throw new NullPointerException("sources == null"); 68 this.sources = sources; [all...] |
CstInsn.java | 35 * @param sources {@code non-null;} specs for all the sources 39 RegisterSpecList sources, Constant cst) { 40 super(opcode, position, result, sources);
|
/external/e2fsprogs/contrib/python-uuid/ |
setup.py | 5 sources = ['uuid.c'], variable
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
SearchableCorporaTest.java | 57 MockSources sources = new MockSources(); local 58 sources.addSource(MockSource.SOURCE_1); 59 sources.addSource(MockSource.SOURCE_2); 60 sources.addSource(MockSource.SOURCE_3); 61 sources.addSource(MockSource.WEB_SOURCE); 62 mCorpora = new SearchableCorpora(mContext, mSettings, sources, new MockCorpusFactory()); 98 public Collection<Corpus> createCorpora(Sources sources) {
|